home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-09-06 | 2.1 KB | 106 lines | [TEXT/QED1] |
- ;
- ; SPRAY PAINT, GRAFFITI, QUOTES, OR WHATEVER WALL
- ; For Mansion 8 BBS
- ;
- ; By Mark Toland
- ; Zoo System Mac BBS
- ; Fidonet 290/2
- ; 515-279-3073 9600 v.32 v.42bis
- ;
- ;
- ; •••• READ THE COMMENTS BELOW ABOUT FILE CREATION!!!!!!!!! ••••
- ;
- ; This script can be used for graffiti or quotes or whatever.
- MOVE @LIMIT,&250
- LOADUSERINFO
- LIMIT &250
- /ONE
- PRINT
- PRINT Welcome to the 'Quote Scroll'
- PRINT -----------------------------
- PRINT
- PRINT Options...
- PRINT [A] Read the current scroll.
- PRINT [B] Add a Quote to the current scroll.
- PRINT [Q] Quit back to the BBS.
- PRINT
- PRINT
- DRAW Enter your choice :
- INPUT 1,&0
- IF &0,=,Q
- END
- ENDIF
- IF &0,=,A
- FORWARD /READ
- ENDIF
- ;
- IF &0,=,B
- FORWARD /WRITE
- ENDIF
- IF &0,<>,Q
- REVERSE /ONE
- ENDIF
- ;
- ; ••• Read the current file. Define the filename on the 'display' line!
- /READ
- DISPLAY HD 60:Mansion BBS ƒ:Mansion Data:Misc Data:QuoteWall
- PRINT
- DRAW Press RETURN to continue :
- INPUT 1,&99
- PRINT
- PRINT
- PRINT
- REVERSE /ONE
- ;
- /WRITE
- ; ••• Add to the current file. Define the filename on the 'display' line!
- PRINT
- PRINT You may enter 3 lines of 60 characters.
- PRINT Please keep it clean. This is a public board!
- PRINT Press RETURN after each line. Enter your text now.
- INPUT 60,&20
- INPUT 60,&21
- INPUT 60,&22
- /TWO
- PRINT
- PRINT Ok here is what you entered.
- PRINT
- PRINT
- PRINT &20
- PRINT &21
- PRINT &22
- ;
- PRINT
- DRAW Do you want this to be recorded? (Y/N):
- INPUT 1,&99
- IF &99,=,N
- REVERSE /ONE
- ENDIF
- IF &99,<>,Y
- REVERSE /TWO
- ENDIF
- PRINT
- PRINT Saving your entry...
- ;
- ;
- MOVE 1,&100
- SPACES &100
- MOVE Entered By :,&30
- CONCAT &30,&280
- MOVE @DATE,&32
- CONCAT &30,&100
- CONCAT &30,&32
- ;
- ; •••• YOU MUST FIRST CREATE YOUR QUOTEWALL file with a text editor.
- ; •••• It can contain a blank line or add header information if you wish.
- ; •••• IT MUST be created before you run this script!
- ; •••• EDIT THE FOLLOWING LINE AS TO THE LOCATION OF YOUR 'QUOTEWALL' FILE.
- OUTPUT HD 60:Mansion BBS ƒ:Mansion Data:Misc Data:QuoteWall
- APPEND &30
- APPEND &20
- APPEND &21
- APPEND &22
- APPEND ------------------------------------------------------------
- PRINT Thanks for adding your quote!
- REVERSE /ONE
- END